39ae185ef3de5f4fb0e1add6a772f779722918fd,core/kernel/source/jetbrains/mps/vfs/VFileSystem.java,VFileSystem,refreshFileSynchronously,#IFile#,141

Before Change


  }

  public static void refreshFileSynchronously(IFile modelFile) {
    LocalFileSystem.getInstance().refreshAndFindFileByIoFile(modelFile.toFile());
  }
}

After Change


  }

  public static VirtualFile refreshFileSynchronously(IFile modelFile) {
    VirtualFile file = LocalFileSystem.getInstance().refreshAndFindFileByIoFile(modelFile.toFile());
    if (file != null) {
      file.refresh(true, false);
    }
    return file;
  }
}